]> AND Private Git Repository - these_gilles.git/blob - DOCS/Scalable and Interactive Segmentation and Visualization of Neural Processes in EM Datasets_files/jquery.scrollTo-1.4.2.js
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
final
[these_gilles.git] / DOCS / Scalable and Interactive Segmentation and Visualization of Neural Processes in EM Datasets_files / jquery.scrollTo-1.4.2.js
1 /**\r
2  * jQuery.ScrollTo\r
3  * Copyright (c) 2007-2009 Ariel Flesler - aflesler(at)gmail(dot)com | http://flesler.blogspot.com\r
4  * Dual licensed under MIT and GPL.\r
5  * Date: 5/25/2009\r
6  *\r
7  * @projectDescription Easy element scrolling using jQuery.\r
8  * http://flesler.blogspot.com/2007/10/jqueryscrollto.html\r
9  * Works with jQuery +1.2.6. Tested on FF 2/3, IE 6/7/8, Opera 9.5/6, Safari 3, Chrome 1 on WinXP.\r
10  *\r
11  * @author Ariel Flesler\r
12  * @version 1.4.2\r
13  *\r
14  * @id jQuery.scrollTo\r
15  * @id jQuery.fn.scrollTo\r
16  * @param {String, Number, DOMElement, jQuery, Object} target Where to scroll the matched elements.\r
17  *        The different options for target are:\r
18  *              - A number position (will be applied to all axes).\r
19  *              - A string position ('44', '100px', '+=90', etc ) will be applied to all axes\r
20  *              - A jQuery/DOM element ( logically, child of the element to scroll )\r
21  *              - A string selector, that will be relative to the element to scroll ( 'li:eq(2)', etc )\r
22  *              - A hash { top:x, left:y }, x and y can be any kind of number/string like above.\r
23 *               - A percentage of the container's dimension/s, for example: 50% to go to the middle.\r
24  *              - The string 'max' for go-to-end. \r
25  * @param {Number} duration The OVERALL length of the animation, this argument can be the settings object instead.\r
26  * @param {Object,Function} settings Optional set of settings or the onAfter callback.\r
27  *       @option {String} axis Which axis must be scrolled, use 'x', 'y', 'xy' or 'yx'.\r
28  *       @option {Number} duration The OVERALL length of the animation.\r
29  *       @option {String} easing The easing method for the animation.\r
30  *       @option {Boolean} margin If true, the margin of the target element will be deducted from the final position.\r
31  *       @option {Object, Number} offset Add/deduct from the end position. One number for both axes or { top:x, left:y }.\r
32  *       @option {Object, Number} over Add/deduct the height/width multiplied by 'over', can be { top:x, left:y } when using both axes.\r
33  *       @option {Boolean} queue If true, and both axis are given, the 2nd axis will only be animated after the first one ends.\r
34  *       @option {Function} onAfter Function to be called after the scrolling ends. \r
35  *       @option {Function} onAfterFirst If queuing is activated, this function will be called after the first scrolling ends.\r
36  * @return {jQuery} Returns the same jQuery object, for chaining.\r
37  *\r
38  * @desc Scroll to a fixed position\r
39  * @example $('div').scrollTo( 340 );\r
40  *\r
41  * @desc Scroll relatively to the actual position\r
42  * @example $('div').scrollTo( '+=340px', { axis:'y' } );\r
43  *\r
44  * @dec Scroll using a selector (relative to the scrolled element)\r
45  * @example $('div').scrollTo( 'p.paragraph:eq(2)', 500, { easing:'swing', queue:true, axis:'xy' } );\r
46  *\r
47  * @ Scroll to a DOM element (same for jQuery object)\r
48  * @example var second_child = document.getElementById('container').firstChild.nextSibling;\r
49  *                      $('#container').scrollTo( second_child, { duration:500, axis:'x', onAfter:function(){\r
50  *                              alert('scrolled!!');                                                                                                                               \r
51  *                      }});\r
52  *\r
53  * @desc Scroll on both axes, to different values\r
54  * @example $('div').scrollTo( { top: 300, left:'+=200' }, { axis:'xy', offset:-20 } );\r
55  */\r
56 ;(function( $ ){\r
57         \r
58         var $scrollTo = $.scrollTo = function( target, duration, settings ){\r
59                 $(window).scrollTo( target, duration, settings );\r
60         };\r
61 \r
62         $scrollTo.defaults = {\r
63                 axis:'xy',\r
64                 duration: parseFloat($.fn.jquery) >= 1.3 ? 0 : 1\r
65         };\r
66 \r
67         // Returns the element that needs to be animated to scroll the window.\r
68         // Kept for backwards compatibility (specially for localScroll & serialScroll)\r
69         $scrollTo.window = function( scope ){\r
70                 return $(window)._scrollable();\r
71         };\r
72 \r
73         // Hack, hack, hack :)\r
74         // Returns the real elements to scroll (supports window/iframes, documents and regular nodes)\r
75         $.fn._scrollable = function(){\r
76                 return this.map(function(){\r
77                         var elem = this,\r
78                                 isWin = !elem.nodeName || $.inArray( elem.nodeName.toLowerCase(), ['iframe','#document','html','body'] ) != -1;\r
79 \r
80                                 if( !isWin )\r
81                                         return elem;\r
82 \r
83                         var doc = (elem.contentWindow || elem).document || elem.ownerDocument || elem;\r
84                         \r
85                         return $.browser.safari || doc.compatMode == 'BackCompat' ?\r
86                                 doc.body : \r
87                                 doc.documentElement;\r
88                 });\r
89         };\r
90 \r
91         $.fn.scrollTo = function( target, duration, settings ){\r
92                 if( typeof duration == 'object' ){\r
93                         settings = duration;\r
94                         duration = 0;\r
95                 }\r
96                 if( typeof settings == 'function' )\r
97                         settings = { onAfter:settings };\r
98                         \r
99                 if( target == 'max' )\r
100                         target = 9e9;\r
101                         \r
102                 settings = $.extend( {}, $scrollTo.defaults, settings );\r
103                 // Speed is still recognized for backwards compatibility\r
104                 duration = duration || settings.speed || settings.duration;\r
105                 // Make sure the settings are given right\r
106                 settings.queue = settings.queue && settings.axis.length > 1;\r
107                 \r
108                 if( settings.queue )\r
109                         // Let's keep the overall duration\r
110                         duration /= 2;\r
111                 settings.offset = both( settings.offset );\r
112                 settings.over = both( settings.over );\r
113 \r
114                 return this._scrollable().each(function(){\r
115                         var elem = this,\r
116                                 $elem = $(elem),\r
117                                 targ = target, toff, attr = {},\r
118                                 win = $elem.is('html,body');\r
119 \r
120                         switch( typeof targ ){\r
121                                 // A number will pass the regex\r
122                                 case 'number':\r
123                                 case 'string':\r
124                                         if( /^([+-]=)?\d+(\.\d+)?(px|%)?$/.test(targ) ){\r
125                                                 targ = both( targ );\r
126                                                 // We are done\r
127                                                 break;\r
128                                         }\r
129                                         // Relative selector, no break!\r
130                                         targ = $(targ,this);\r
131                                 case 'object':\r
132                                         // DOMElement / jQuery\r
133                                         if( targ.is || targ.style )\r
134                                                 // Get the real position of the target \r
135                                                 toff = (targ = $(targ)).offset();\r
136                         }\r
137                         $.each( settings.axis.split(''), function( i, axis ){\r
138                                 var Pos = axis == 'x' ? 'Left' : 'Top',\r
139                                         pos = Pos.toLowerCase(),\r
140                                         key = 'scroll' + Pos,\r
141                                         old = elem[key],\r
142                                         max = $scrollTo.max(elem, axis);\r
143 \r
144                                 if( toff ){// jQuery / DOMElement\r
145                                         attr[key] = toff[pos] + ( win ? 0 : old - $elem.offset()[pos] );\r
146 \r
147                                         // If it's a dom element, reduce the margin\r
148                                         if( settings.margin ){\r
149                                                 attr[key] -= parseInt(targ.css('margin'+Pos)) || 0;\r
150                                                 attr[key] -= parseInt(targ.css('border'+Pos+'Width')) || 0;\r
151                                         }\r
152                                         \r
153                                         attr[key] += settings.offset[pos] || 0;\r
154                                         \r
155                                         if( settings.over[pos] )\r
156                                                 // Scroll to a fraction of its width/height\r
157                                                 attr[key] += targ[axis=='x'?'width':'height']() * settings.over[pos];\r
158                                 }else{ \r
159                                         var val = targ[pos];\r
160                                         // Handle percentage values\r
161                                         attr[key] = val.slice && val.slice(-1) == '%' ? \r
162                                                 parseFloat(val) / 100 * max\r
163                                                 : val;\r
164                                 }\r
165 \r
166                                 // Number or 'number'\r
167                                 if( /^\d+$/.test(attr[key]) )\r
168                                         // Check the limits\r
169                                         attr[key] = attr[key] <= 0 ? 0 : Math.min( attr[key], max );\r
170 \r
171                                 // Queueing axes\r
172                                 if( !i && settings.queue ){\r
173                                         // Don't waste time animating, if there's no need.\r
174                                         if( old != attr[key] )\r
175                                                 // Intermediate animation\r
176                                                 animate( settings.onAfterFirst );\r
177                                         // Don't animate this axis again in the next iteration.\r
178                                         delete attr[key];\r
179                                 }\r
180                         });\r
181 \r
182                         animate( settings.onAfter );                    \r
183 \r
184                         function animate( callback ){\r
185                                 $elem.animate( attr, duration, settings.easing, callback && function(){\r
186                                         callback.call(this, target, settings);\r
187                                 });\r
188                         };\r
189 \r
190                 }).end();\r
191         };\r
192         \r
193         // Max scrolling position, works on quirks mode\r
194         // It only fails (not too badly) on IE, quirks mode.\r
195         $scrollTo.max = function( elem, axis ){\r
196                 var Dim = axis == 'x' ? 'Width' : 'Height',\r
197                         scroll = 'scroll'+Dim;\r
198                 \r
199                 if( !$(elem).is('html,body') )\r
200                         return elem[scroll] - $(elem)[Dim.toLowerCase()]();\r
201                 \r
202                 var size = 'client' + Dim,\r
203                         html = elem.ownerDocument.documentElement,\r
204                         body = elem.ownerDocument.body;\r
205 \r
206                 return Math.max( html[scroll], body[scroll] ) \r
207                          - Math.min( html[size]  , body[size]   );\r
208                         \r
209         };\r
210 \r
211         function both( val ){\r
212                 return typeof val == 'object' ? val : { top:val, left:val };\r
213         };\r
214 \r
215 })( jQuery );